home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
64'er
/
64ER_CD.iso
/
sh7x
/
sh72a.d64
/
graf.einf. fx-80
(
.txt
)
< prev
next >
Wrap
Commodore BASIC
|
1995-03-30
|
201b
|
11 lines
10 REM --- DRUCK EINER SINUSKURVE ---
20 REM -- IM GRAFIKMODUS DES EPSON --
30 OPEN1,4
40 PRINT#1,CHR$(27);"*";CHR$(0);CHR$(100);CHR$(0);
50 FORI=1TO100
60 A=2^INT((1+SIN(I*(null)/20))*3.5+.5)
70 PRINT#1,CHR$(A);
80 NEXTI
90 PRINT#1
100 CLOSE1